can: bcm: delay release of struct bcm_op after synchronize_rcu()
authorThadeu Lima de Souza Cascardo <cascardo@canonical.com>
Sat, 19 Jun 2021 16:18:13 +0000 (13:18 -0300)
committerSalvatore Bonaccorso <carnil@debian.org>
Thu, 23 Sep 2021 20:35:21 +0000 (21:35 +0100)
commit674fd7e36e043e27c6cca80fbd7b4d6e1e6ed005
treef3ef8de09690e31a1908227e2b22f6036ba26559
parent93cf3f9b7c4dd2e01925d5fe8b01de76bf279485
can: bcm: delay release of struct bcm_op after synchronize_rcu()

Origin: https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/commit/?id=d5f9023fa61ee8b94f37a93f08e94b136cf1e463
Bug-Debian-Security: https://security-tracker.debian.org/tracker/CVE-2021-3609

can_rx_register() callbacks may be called concurrently to the call to
can_rx_unregister(). The callbacks and callback data, though, are
protected by RCU and the struct sock reference count.

So the callback data is really attached to the life of sk, meaning
that it should be released on sk_destruct. However, bcm_remove_op()
calls tasklet_kill(), and RCU callbacks may be called under RCU
softirq, so that cannot be used on kernels before the introduction of
HRTIMER_MODE_SOFT.

However, bcm_rx_handler() is called under RCU protection, so after
calling can_rx_unregister(), we may call synchronize_rcu() in order to
wait for any RCU read-side critical sections to finish. That is,
bcm_rx_handler() won't be called anymore for those ops. So, we only
free them, after we do that synchronize_rcu().

Fixes: ffd980f976e7 ("[CAN]: Add broadcast manager (bcm) protocol")
Link: https://lore.kernel.org/r/20210619161813.2098382-1-cascardo@canonical.com
Cc: linux-stable <stable@vger.kernel.org>
Reported-by: syzbot+0f7e7e5e2f4f40fa89c0@syzkaller.appspotmail.com
Reported-by: Norbert Slusarek <nslusarek@gmx.net>
Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@canonical.com>
Acked-by: Oliver Hartkopp <socketcan@hartkopp.net>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Gbp-Pq: Topic bugfix/all
Gbp-Pq: Name can-bcm-delay-release-of-struct-bcm_op-after-synchro.patch
net/can/bcm.c